idle mode - перевод на русский
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

idle mode - перевод на русский

WIKIMEDIA DISAMBIGUATION PAGE
Idling; IDLE (disambiguation); Idle (disambiguation)
Найдено результатов: 601
idle mode      

общая лексика

режим ожидания, режим холостого хода, нерабочий режим

в микроконтроллерах - режим работы с пониженным энергопотреблением, когда процессор выключен, в то время как ОЗУ и встроенные периферийные устройства продолжают функционировать

idle mode      
холостой режим; режим ожидания
idle mode      
режим "свободна". Состояние MS, не занятой активной обработкой вызова.
offline mode         
  • Airplane mode icon
  • Airplane mode in a laptop keyboard
  • Smartphone with airplane mode turned on
SETTING AVAILABLE ON MANY ELECTRONIC DEVICES
Flight Mode; Offline Mode; Flight mode; Airplane Mode; Plane mode; Aeroplane mode; Aeroplane Mode

общая лексика

автономный [режим]

режим работы периферийного устройства, при котором между ним и компьютером нет связи. Используется во время обслуживания, тестирования и конфигурирования

компьютер, не подсоединенный к локальной сети

offline mode         
  • Airplane mode icon
  • Airplane mode in a laptop keyboard
  • Smartphone with airplane mode turned on
SETTING AVAILABLE ON MANY ELECTRONIC DEVICES
Flight Mode; Offline Mode; Flight mode; Airplane Mode; Plane mode; Aeroplane mode; Aeroplane Mode
автономный режим
idling         
idling noun 1) безделье 2) tech. работа на холостом ходу
real mode         
OPERATING MODE OF ALL X86-COMPATIBLE CPUS
Realmode; Real Mode; Real-address mode; Real address mode; True real mode; Real-mode

общая лексика

реальный режим

один из режимов адресации процессоров 80x86, в котором не поддерживается трансляция виртуальных адресов в физические, а используется адресация, принятая в процессорах 8088/8086. В этом режиме (в нём работали программы под MS-DOS на ПК первых поколений) 20-разрядный адрес формируется сложением смещения адреса и содержимого сегментного регистра, сдвинутого на четыре бита влево, т.е. программам доступен лишь первый мегабайт ОЗУ

антоним

protected mode

Смотрите также

address space

idling         

['aidliŋ]

общая лексика

холостой ход

существительное

общая лексика

бездельничанье

леность

праздность

безделье

техника

холостой ход

режим холостого хода

работа на холостом ходу

idling         
холостой ход, режим холостого хода, работа на холостом ходу
protected mode         
  • Virtual segments of 80286
  • Paging (on Intel 80386) with page size of 4K
  • An Intel 80386 microprocessor
  • Example of privilege ring usage in an operating system using all rings
  • Common method of using paging to create a virtual address space
OPERATIONAL MODE OF X86-COMPATIBLE CENTRAL PROCESSING UNITS
Pmode; Protected Virtual Address Mode; Protected Mode; Protected virtual address mode; Protected-mode; 286 protected mode

общая лексика

защищённый режим

в микропроцессорах Intel 80286 и старше - режим адресации, при которой процессор имеет доступ ко всей расширенной памяти. В защищённом режиме сегментный регистр содержит не адрес начала сегмента, а индекс в таблице описателей сегментов. Кроме адреса начала сегмента каждая запись в этой таблице содержит флаги защиты памяти, позволяющие запретить в неё запись и чтение. Отсюда возникло и название режима

антоним

real mode

Смотрите также

CPU; extended memory

Определение

protected mode
An operating mode of Intel 80x86 processors. The opposite of real mode. The Intel 8088, Intel 8086, Intel 80188 and Intel 80186 had only real mode, processors beginning with the Intel 80286 feature a second mode called protected mode. In real mode, addresses are generated by adding an address offset to the value of a segment register shifted left four bits. As the segment register and address offset are 16 bits long this results in a 20-bit address. This is the origin of the one megabyte (2^20) limit in real mode. There are 4 segment registers on processors before the {Intel 80386}. The 80386 introduced two more segment registers. Which segment register is used depends on the instruction, on the addressing mode and of an optional instruction prefix which selects the segment register explicitly. In protected mode, the segment registers contain an index into a table of segment descriptors. Each segment descriptor contains the start address of the segment, to which the offset is added to generate the address. In addition, the segment descriptor contains memory protection information. This includes an offset limit and bits for write and read permission. This allows the processor to prevent memory accesses to certain data. The operating system can use this to protect different processes' memory from each other, hence the name "protected mode". While the standard register set belongs to the CPU, the segment registers lie "at the boundary" between the CPU and MMU. Each time a new value is loaded into a segment register while in protected mode, the corresponding descriptor is loaded into a descriptor cache in the (Segment-)MMU. On processors before the Pentium this takes longer than just loading the segment register in real mode. Addresses generated by the CPU (which are segment offsets) are passed to the MMU to be checked against the limit in the segment descriptor and are there added to the segment base address in the descriptor to form a linear address. On a 80386 or later, the linear address is further processed by the paged MMU before the result (the physical address) appears on the chip's address pins. The 80286 doesn't have a paged MMU so the linear address is output directly as the physical address. The paged MMU allows for arbitrary remapping of four klilobyte memory blocks (pages) through a translation table stored in memory. A few entries of this table are cached in the MMU's Translation Lookaside Buffer to avoid excessive memory accesses. After processor reset, all processors start in real mode. Protected mode has to be enabled by software. On the 80286 there exists no documented way back to real mode apart from resetting the processor. Later processors allow switching back to real mode by software. Software which has been written or compiled to run in protected mode must only use segment register values given to it by the operating system. Unfortunately, most application code for MS-DOS, written before the 286, will fail in protected mode because it assumes real mode addressing and writes arbitrary values to segment registers, e.g. in order to perform address calculations. Such use of segment registers is only really necessary with data structures that are larger than 64 kilobytes and thus don't fit into a single segment. This is usually dealt with by the huge memory model in compilers. In this model, compilers generate address arithmetic involving segment registers. A solution which is portable to protected mode with almost the same efficiency would involve using a table of segments instead of calculating new segment register values ad hoc. To ease the transition to protected mode, Intel 80386 and later processors provide "virtual 86 mode". (1995-03-29)

Википедия

Idle

Idle generally refers to idleness, a lack of motion or energy.

Idle or idling, may also refer to:

Как переводится idle mode на Русский язык